home *** CD-ROM | disk | FTP | other *** search
- /*
- File: OTVDevice.c
-
- Contains: Virtual device software for Open Transport networking.
-
- Written by: Erik Staats
-
- Copyright: © 1996 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <FW3> 3/29/96 ES Removed inclusion of FWExpertPriv.h.
- <FW2> 3/12/96 ES Fill in contains and written by fields.
- <FW1> 3/12/96 ES first checked in
-
- */
-
- #include <Types.h>
- #include <Errors.h>
- #include <Devices.h>
- #include <DriverServices.h>
- #include <FireWire.h>
- #include <OTVDevice.h>
- /*zzz*/
- #include <stdio.h>
- char debugStr[256];
- /*zzz*/
-
- ////////////////////////////////////////////////////////////////////////////////
- //
- // The virtual device description.
- //
-
- FWVDeviceDescription TheVDeviceDescription =
- {
- {
- kVDeviceDescriptionSignature,
- kVDeviceDescriptionVersion,
- sizeof (FWVDeviceDescription),
- kServiceCategoryFWDriver,
- },
- ' app',
- ' otd'
- };
-